home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / LIBRARY / POLAPLOT.LI < prev    next >
Text File  |  1994-07-28  |  301b  |  7 lines

  1. #    polaplot(r,t) plot r=r(t) on polar plane
  2. #    e.g. polaplot(1,t) plots r=1 w.r.t. t
  3.  
  4. polaplot(r_,t_,tmin_,tmax_,rmin_,rmax_) := paraplot(r*cos(t),r*sin(t),t,tmin,tmax,rmin,rmax)
  5. polaplot(r_,t_,tmin_,tmax_) := paraplot(r*cos(t),r*sin(t),t,tmin,tmax,-5,5)
  6. polaplot(r_,t_) := polaplot(r, t,0,2*pi)
  7.